home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi2 / delphite.exe / data.z / SHAREMEM.INT < prev    next >
Encoding:
Text File  |  1996-08-12  |  730 b   |  24 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Runtime Library                          }
  5. {                                                       }
  6. {       Copyright (C) 1995,96 Borland International     }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit ShareMem;
  11.  
  12. interface
  13.  
  14.  
  15. function SysGetMem(Size: Integer): Pointer;
  16. function SysFreeMem(P: Pointer): Integer;
  17. function SysReallocMem(P: Pointer; Size: Integer): Pointer;
  18. function GetHeapStatus: THeapStatus;
  19. function GetAllocMemCount: Integer;
  20. function GetAllocMemSize: Integer;
  21.  
  22.  
  23. implementation
  24.